This script will return not eligible if the employee does not have children. Put this script in OnEligible to have eligibility dependent on if the employee has children.
if (Event.Employee.HasChildren() != true)
Event.Value = false;
else Event.Value = true;